home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9209.ARJ / 1009072A < prev    next >
Text File  |  1992-05-11  |  163b  |  9 lines

  1. short calculate_output(net)
  2.    short net;
  3. {
  4.    short result;
  5.    result = 1;
  6.    if(net < 0) result = -1;
  7.    return(result);
  8. }  /* ends calculate_output */
  9.